home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / MacHacksBug / Python 1.5.2c1 / Demo / stdwin / TestDirList.py < prev    next >
Encoding:
Python Source  |  2000-06-23  |  276 b   |  19 lines

  1. #! /usr/bin/env python
  2.  
  3. # TestDirList
  4.  
  5. from DirList import DirListWindow
  6. from WindowParent import MainLoop
  7.  
  8. def main():
  9.     import sys
  10.     args = sys.argv[1:]
  11.     if not args:
  12.         args = ['.']
  13.         # Mac: args = [':']
  14.     for arg in args:
  15.         w = DirListWindow().create(arg)
  16.     MainLoop()
  17.  
  18. main()
  19.